module Base
{
    craftRecipe OpenPackOfShowerParts
    {
        timedAction = Making,
        time = 20,
        Tags = InHandCraft;CanBeDoneInDark,
        category = Packing,
        recipeGroup = OpenBox,
        inputs
        {
            item 1 [TABAS.WallShowerPacked] flags[AllowFavorite;InheritFavorite],
        }
        outputs
        {
            item 1 Base.Mov_WallShower,
        }
    }

    craftRecipe PackShowerParts
    {
        timedAction = Making,
        time = 20,
        Tags = InHandCraft;CanBeDoneInDark,
        category = Packing,
        inputs
        {
            item 1 [Base.Mov_WallShower] flags[AllowFavorite;InheritFavorite],
        }
        outputs
        {
            item 1 TABAS.WallShowerPacked,
        }
    }
}